home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / programm / AGNUS / SRC / OC_TEST / MODULE.I < prev    next >
Encoding:
Text File  |  1993-10-22  |  251 b   |  21 lines

  1. /*
  2.     module.i -- This file contains the applications classes
  3. */
  4.  
  5. $classes 
  6.     Cstr, Pstr
  7. $
  8.  
  9. /* The two types Cstr and Pstr are of fixed size and 
  10.    therefore not very usefull. */
  11.  
  12. $dat Cstr
  13.     Char    value[250];
  14. $
  15.  
  16. $dat Pstr
  17.     Int        len;
  18.     Char    value[250];
  19. $
  20.  
  21.